home *** CD-ROM | disk | FTP | other *** search
- //
- // AppInfo.h
- // RocketLauncher
- //
- // Created by Oleg Kibirev on 12/31/04.
- // Copyright 2004 My Stuff. All rights reserved.
- //
-
- #import <Cocoa/Cocoa.h>
-
-
- @interface AppInfo : NSObject {
- NSImage *icon;
- NSString *name;
- NSString *path;
- BOOL gotIcon;
- BOOL isOSX;
- }
-
- -(id)initWithName: (NSString *)n path: (NSString *)p isOSX: (BOOL)osx;
- -(void)copyFrom: (AppInfo *)ai;
- -(void)dealloc;
- -(NSImage *)icon;
- -(NSString *)name;
- -(BOOL)launch;
- +(NSArray *)allApps: (NSArray *)oldList;
- -(NSComparisonResult)compare: (AppInfo *)ai;
- @end
-